home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 January: Mac OS SDK / Dev.CD Jan 99 SDK1.toast / Development Kits / Interfaces&Libraries / Universal / Interfaces / PInterfaces / Strings.p < prev    next >
Encoding:
Text File  |  1998-08-17  |  850 b   |  48 lines  |  [TEXT/MPS ]

  1. {
  2.      File:        Strings.p
  3.  
  4.      Contains:    Pascal <-> C String Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.2
  8.  
  9.      Copyright:    © 1985-1998, 1996-1997 by Apple Computer, Inc., all rights reserved
  10.  
  11.      Bugs?:        For bug reports, consult the following page on
  12.                  the World Wide Web:
  13.  
  14.                      http://developer.apple.com/bugreporter/
  15.  
  16. }
  17. {
  18.     Note: All Pascal <-> C String routines have moved to TextUtils.h
  19.  
  20. }
  21. {$IFC UNDEFINED UsingIncludes}
  22. {$SETC UsingIncludes := 0}
  23. {$ENDC}
  24.  
  25. {$IFC NOT UsingIncludes}
  26.  UNIT Strings;
  27.  INTERFACE
  28. {$ENDC}
  29.  
  30. {$IFC UNDEFINED __STRINGS__}
  31. {$SETC __STRINGS__ := 1}
  32.  
  33. {$I+}
  34. {$SETC StringsIncludes := UsingIncludes}
  35. {$SETC UsingIncludes := 1}
  36.  
  37. {$IFC UNDEFINED __TEXTUTILS__}
  38. {$I TextUtils.p}
  39. {$ENDC}
  40.  
  41. {$SETC UsingIncludes := StringsIncludes}
  42.  
  43. {$ENDC} {__STRINGS__}
  44.  
  45. {$IFC NOT UsingIncludes}
  46.  END.
  47. {$ENDC}
  48.